home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGBLER / WHIZZARD.LZH / LONGDEMO.BAT < prev    next >
DOS Batch File  |  1984-07-12  |  2KB  |  71 lines

  1. CLS
  2. . LONGDEMO.BAT    OF CLUBware software BASIC PRINT enhancements
  3. .  Enhancements are for  1. interpreted BASICA on the IBM PC
  4. .             2. compiled BASIC with /O option
  5. .             3. compiled BASIC without /O option
  6. . If you like and use this software, source code is included,
  7. .    please send $5.00 to   RAYHAWK AUTOMATION NW INC.
  8. .                P.O. BOX 1427
  9. .                Beaverton OR 97075
  10. .
  11. . Show how assembler calls improve compiled BASIC PRINT statements
  12. .
  13. PAUSE  Enter to start this demo program
  14. BANDDEMO
  15. CLS
  16. .
  17. . Show how PRSLASHO speeds up compiled BASIC PRINT statements
  18. .    PRSLASHO is an 1100 byte program that is run and remains
  19. .    resident in the system as long as the computer is not booted.
  20. .    No changes are required to standard BASIC PRINT statements.
  21. .
  22. PRSLASHO
  23. PAUSE  Enter to start this demo program
  24. BANDDEMO
  25. CLS
  26. .
  27. . Show how each of the ASMBASIC subroutines can work with routine SUBDEMO
  28. .
  29. PAUSE  Enter to start this demo program
  30. SUBDEMO
  31. CLS
  32. .
  33. . Show how fast different screens can be displayed, with and without
  34. . CLUBware Whizzard Screen I/O improvements to BASIC
  35. TYPE TIMEPRIN.FIL
  36. .
  37. PAUSE Enter to start the next demo
  38. .
  39. . Show how assembler calls improve interpreted BASIC 2.0 statements
  40. .
  41. .   IF BASICA.COM is not in this directory or on your DOS 2.0 path then
  42. PAUSE      The interpreted demo will not work,  Ctrl-Break to stop demo
  43. .
  44. . Load ASMBASIC.EXE to execute BASIC assembler calls
  45. ASMBASIC
  46. .
  47. PAUSE  Enter to start this demo program
  48. BASICA BANDDEMO
  49. CLS
  50. .
  51. . Show how BASPRINT.EXE speeds up interpreted BASIC print statements
  52. .
  53. BASPRINT
  54. .
  55. PAUSE  Enter to start this demo program
  56. BASICA BANDDEMO
  57. CLS
  58. .
  59. . Show how assembler calls improve compiled BASIC statements
  60. . when the program has been compiled without the /O option.
  61. .   IF BASRUN.EXE is not in this directory or on your DOS 2.0 path then
  62. PAUSE      The compiled demo will not work,  Ctrl-Break to stop demo
  63. .
  64. . Load COMPRINT to speed up compiled PRINT statements, compiled without /O
  65. COMPRINT
  66. .
  67. PAUSE  Enter to start this demo program
  68. BANDNOO
  69. .
  70. .
  71.